Dynomotion

Group: DynoMotion Message: 7874 From: Toby Rule Date: 7/8/2013
Subject: Function to get active line number

Hi Tom,

 

Below is the patch that I’ve been using to get the segment that is currently cutting.  You had warned me that this won’t work with the circular buffers, but it has worked for our applications, so apparently the buffer is never filled enough to circle around.

 

However, starting with KMotion431 e or f, it no longer reports the correct line.  It reports a couple lines later.  It sort of looks like it’s reporting the last line to download, not the line currently executing.   Do you have any idea what changed?  I’ll do some debugging on it and see what I find.

 

Thanks,

 

Toby

 

int CGCodeInterpreter::GetActiveLineNumber(){

                CCoordMotion * cm = this->CoordMotion;

                CString response,responsebuf;

                bool Finished=false, NotStarted=false;

                SEGMENT *segs_to_check;

                int current_line;

               

                /* Check if kmotion board is active */

                if (!cm->GetHalt() && !cm->m_Simulate)

                {

                                // determine the line number we were at

                                if (cm->KMotionDLL->WriteLineReadLine("ExecTime",response.GetBufferSetLength(MAX_LINE))) return 1;

                                response.ReleaseBuffer();

                                double timeAlreadyExecuted;

                                int result=sscanf(response, "%lf",&timeAlreadyExecuted);

                                if (result != 1)  return -1;

                                if (timeAlreadyExecuted < 0.0) return -1;

 

                                int i,k,n;

                                double BufTime=0;

 

                                segs_to_check = segments_executing;

                               

                                if (segments_executing==segments)

                                                n=nsegs;

                                else

                                               n=prev_nsegs;

                                i=0; 

                                // search for where we were in the path based on time

                                for (i=0; i<n; i++)

                                {

                                                for (k=0; k<3; k++)

                                                {

                                                                BufTime += segs_to_check[i].C[k].t; 

                                                                if (BufTime > timeAlreadyExecuted) break;

                                                }

                                                if (BufTime > timeAlreadyExecuted) break;

                                }

 

                                if (i==n)

                                {

                                                return -1;

                                }

 

                                current_line = segs_to_check[i].sequence_number;

                                return current_line;

                }

               

                return -1;

}

 

The information contained in this transmission is intended only for the person or entity
to which it is addressed and may contain II-VI Proprietary and/or II-VI Business Sensitive
material. If you are not the intended recipient, please contact the sender immediately
and destroy the material in its entirety, whether electronic or hard copy. You are
notified that any review, retransmission, copying, disclosure, dissemination or other
use of, or taking of any action in reliance upon this information by persons or entities 
other than the intended recipient is prohibited.
Group: DynoMotion Message: 7878 From: Tom Kerekes Date: 7/8/2013
Subject: Re: Function to get active line number
Hi Toby,

It is fairly complicated to determine the current segment.  I think the current code does it correctly on a Halt, but the technique might have issues doing it on-the-fly while things are changing.

The new method with V431f keeps track of the total times downloaded so that the Trajectory Segment Buffer can wrap around multiple times allowing very old data to be lost.  But then after a Halt we can start at the end (most recent data) and search backwards to find the point in time the Tool stopped.

Another change in V431f is that the buffer now contains Rapids and Dwells that have different number of "Trip State Times" (7 and 1 states vs G1/G2/G3 were always just 3).


You can probably copy the code from:

int CCoordMotion::CheckMotionHalt(bool Coord)

The new backwards search occurs here:

                BufTime=SegsDoneTime[index];

                for (i=SegsDone[index]; i>=0; i--)
                {
                    for (k=segs_to_check[TPMOD(i)].nTrips-1; k>=0; k--)
                    {
                        if (BufTime <= m_TimeAlreadyExecuted) break;
                        BufTime -= segs_to_check[TPMOD(i)].C[k].t; 
                    }
                    if (BufTime <= m_TimeAlreadyExecuted ||
                        (m_TimeAlreadyExecuted==0.0 && BufTime<1e-6)) break;
                }
            }

HTH
Regards
TK